package rope;

public class Ropes {
	static Rope create() {
		return new Leaf("");
	}
	static Rope create(String s) {
		return new Leaf(s);
	}
}
